home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / gmake371 / main.c < prev    next >
C/C++ Source or Header  |  1994-05-29  |  52KB  |  1,877 lines

  1. /* Argument parsing and main program of GNU Make.
  2. Copyright (C) 1988, 89, 90, 91, 94 Free Software Foundation, Inc.
  3. This file is part of GNU Make.
  4.  
  5. GNU Make is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. GNU Make is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with GNU Make; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. /* This file was changed by Morten Welinder for the MSDOS port.  The changes
  20.    are delimited by `#ifdef MSDOS' conditionals.  */
  21.  
  22. #include "make.h"
  23. #include "commands.h"
  24. #include "dep.h"
  25. #include "file.h"
  26. #include "variable.h"
  27. #include "job.h"
  28. #include "getopt.h"
  29.  
  30. #ifdef MSDOS
  31. #include "dosstuff.h"
  32. unsigned _stklen = 0xF000;
  33. #endif
  34.  
  35. extern void print_variable_data_base ();
  36. extern void print_dir_data_base ();
  37. extern void print_rule_data_base ();
  38. extern void print_file_data_base ();
  39. extern void print_vpath_data_base ();
  40.  
  41. #ifndef    HAVE_UNISTD_H
  42. extern int chdir ();
  43. #endif
  44. #ifndef    STDC_HEADERS
  45. #ifndef    sun            /* Sun has an incorrect decl in a header.  */
  46. extern void exit ();
  47. #endif
  48. extern double atof ();
  49. #endif
  50. extern char *mktemp ();
  51.  
  52. static void log_working_directory ();
  53. static void print_data_base (), print_version ();
  54. static void decode_switches (), decode_env_switches ();
  55. static void define_makeflags ();
  56.  
  57. /* The structure that describes an accepted command switch.  */
  58.  
  59. struct command_switch
  60.   {
  61.     char c;            /* The switch character.  */
  62.  
  63.     enum            /* Type of the value.  */
  64.       {
  65.     flag,            /* Turn int flag on.  */
  66.     flag_off,        /* Turn int flag off.  */
  67.     string,            /* One string per switch.  */
  68.     positive_int,        /* A positive integer.  */
  69.     floating,        /* A floating-point number (double).  */
  70.     ignore            /* Ignored.  */
  71.       } type;
  72.  
  73.     char *value_ptr;    /* Pointer to the value-holding variable.  */
  74.  
  75.     unsigned int env:1;        /* Can come from MAKEFLAGS.  */
  76.     unsigned int toenv:1;    /* Should be put in MAKEFLAGS.  */
  77.     unsigned int no_makefile:1;    /* Don't propagate when remaking makefiles.  */
  78.  
  79.     char *noarg_value;    /* Pointer to value used if no argument is given.  */
  80.     char *default_value;/* Pointer to default value.  */
  81.  
  82.     char *long_name;        /* Long option name.  */
  83.     char *argdesc;        /* Descriptive word for argument.  */
  84.     char *description;        /* Description for usage message.  */
  85.   };
  86.  
  87.  
  88. /* The structure used to hold the list of strings given
  89.    in command switches of a type that takes string arguments.  */
  90.  
  91. struct stringlist
  92.   {
  93.     char **list;    /* Nil-terminated list of strings.  */
  94.     unsigned int idx;    /* Index into above.  */
  95.     unsigned int max;    /* Number of pointers allocated.  */
  96.   };
  97.  
  98.  
  99. /* The recognized command switches.  */
  100.  
  101. /* Nonzero means do not print commands to be executed (-s).  */
  102.  
  103. int silent_flag;
  104.  
  105. /* Nonzero means just touch the files
  106.    that would appear to need remaking (-t)  */
  107.  
  108. int touch_flag;
  109.  
  110. /* Nonzero means just print what commands would need to be executed,
  111.    don't actually execute them (-n).  */
  112.  
  113. int just_print_flag;
  114.  
  115. /* Print debugging trace info (-d).  */
  116.  
  117. int debug_flag = 0;
  118.  
  119. /* Environment variables override makefile definitions.  */
  120.  
  121. int env_overrides = 0;
  122.  
  123. /* Nonzero means ignore status codes returned by commands
  124.    executed to remake files.  Just treat them all as successful (-i).  */
  125.  
  126. int ignore_errors_flag = 0;
  127.  
  128. /* Nonzero means don't remake anything, just print the data base
  129.    that results from reading the makefile (-p).  */
  130.  
  131. int print_data_base_flag = 0;
  132.  
  133. /* Nonzero means don't remake anything; just return a nonzero status
  134.    if the specified targets are not up to date (-q).  */
  135.  
  136. int question_flag = 0;
  137.  
  138. /* Nonzero means do not use any of the builtin rules (-r).  */
  139.  
  140. int no_builtin_rules_flag = 0;
  141.  
  142. /* Nonzero means keep going even if remaking some file fails (-k).  */
  143.  
  144. int keep_going_flag;
  145. int default_keep_going_flag = 0;
  146.  
  147. /* Nonzero means print directory before starting and when done (-w).  */
  148.  
  149. int print_directory_flag = 0;
  150.  
  151. /* Nonzero means ignore print_directory_flag and never print the directory.
  152.    This is necessary because print_directory_flag is set implicitly.  */
  153.  
  154. int inhibit_print_directory_flag = 0;
  155.  
  156. /* Nonzero means print version information.  */
  157.  
  158. int print_version_flag = 0;
  159.  
  160. /* List of makefiles given with -f switches.  */
  161.  
  162. static struct stringlist *makefiles = 0;
  163.  
  164.  
  165. /* Number of job slots (commands that can be run at once).  */
  166.  
  167. unsigned int job_slots = 1;
  168. unsigned int default_job_slots = 1;
  169.  
  170. /* Value of job_slots that means no limit.  */
  171.  
  172. static unsigned int inf_jobs = 0;
  173.  
  174. /* Maximum load average at which multiple jobs will be run.
  175.    Negative values mean unlimited, while zero means limit to
  176.    zero load (which could be useful to start infinite jobs remotely
  177.    but one at a time locally).  */
  178.  
  179. double max_load_average = -1.0;
  180. double default_load_average = -1.0;
  181.  
  182. /* List of directories given with -C switches.  */
  183.  
  184. static struct stringlist *directories = 0;
  185.  
  186. /* List of include directories given with -I switches.  */
  187.  
  188. static struct stringlist *include_directories = 0;
  189.  
  190. /* List of files given with -o switches.  */
  191.  
  192. static struct stringlist *old_files = 0;
  193.  
  194. /* List of files given with -W switches.  */
  195.  
  196. static struct stringlist *new_files = 0;
  197.  
  198. /* If nonzero, we should just print usage and exit.  */
  199.  
  200. static int print_usage_flag = 0;
  201.  
  202. /* If nonzero, we should print a warning message
  203.    for each reference to an undefined variable.  */
  204.  
  205. int warn_undefined_variables_flag;
  206.  
  207. /* The table of command switches.  */
  208.  
  209. static const struct command_switch switches[] =
  210.   {
  211.     { 'b', ignore, 0, 0, 0, 0, 0, 0,
  212.     0, 0,
  213.     "Ignored for compatibility" },
  214.     { 'C', string, (char *) &directories, 0, 0, 0, 0, 0,
  215.     "directory", "DIRECTORY",
  216.     "Change to DIRECTORY before doing anything" },
  217.     { 'd', flag, (char *) &debug_flag, 1, 1, 0, 0, 0,
  218.     "debug", 0,
  219.     "Print lots of debugging information" },
  220.     { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0,
  221.     "environment-overrides", 0,
  222.     "Environment variables override makefiles" },
  223.     { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0,
  224.     "file", "FILE",
  225.     "Read FILE as a makefile" },
  226.     { 'h', flag, (char *) &print_usage_flag, 0, 0, 0, 0, 0,
  227.     "help", 0,
  228.     "Print this message and exit" },
  229.     { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0,
  230.     "ignore-errors", 0,
  231.     "Ignore errors from commands" },
  232.     { 'I', string, (char *) &include_directories, 1, 1, 0, 0, 0,
  233.     "include-dir", "DIRECTORY",
  234.     "Search DIRECTORY for included makefiles" },
  235.     { 'j', positive_int, (char *) &job_slots, 1, 1, 0,
  236.     (char *) &inf_jobs, (char *) &default_job_slots,
  237.     "jobs", "N",
  238.     "Allow N jobs at once; infinite jobs with no arg" },
  239.     { 'k', flag, (char *) &keep_going_flag, 1, 1, 0,
  240.     0, (char *) &default_keep_going_flag,
  241.     "keep-going", 0,
  242.     "Keep going when some targets can't be made" },
  243.     { 'l', floating, (char *) &max_load_average, 1, 1, 0,
  244.     (char *) &default_load_average, (char *) &default_load_average,
  245.     "load-average", "N",
  246.     "Don't start multiple jobs unless load is below N" },
  247.     { 'm', ignore, 0, 0, 0, 0, 0, 0,
  248.     0, 0,
  249.     "-b" },
  250.     { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0,
  251.     "just-print", 0,
  252.     "Don't actually run any commands; just print them" },
  253.     { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0,
  254.     "old-file", "FILE",
  255.     "Consider FILE to be very old and don't remake it" },
  256.     { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0,
  257.     "print-data-base", 0,
  258.     "Print make's internal database" },
  259.     { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0,
  260.     "question", 0,
  261.     "Run no commands; exit status says if up to date" },
  262.     { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0,
  263.     "no-builtin-rules", 0,
  264.     "Disable the built-in implicit rules" },
  265.     { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0,
  266.     "silent", 0,
  267.     "Don't echo commands" },
  268.     { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0,
  269.     0, (char *) &default_keep_going_flag,
  270.     "no-keep-going", 0,
  271.     "Turns off -k" },
  272.     { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0,
  273.     "touch", 0,
  274.     "Touch targets instead of remaking them" },
  275.     { 'v', flag, (char *) &print_version_flag, 1, 1, 0, 0, 0,
  276.     "version", 0,
  277.     "Print the version number of make and exit" },
  278.     { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0,
  279.     "print-directory", 0,
  280.     "Print the current directory" },
  281.     { 1, flag, (char *) &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
  282.     "no-print-directory", 0,
  283.     "Turn off -w, even if it was turned on implicitly" },
  284.     { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0,
  285.     "what-if", "FILE",
  286.     "Consider FILE to be infinitely new" },
  287.     { 2, flag, (char *) &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
  288.     "warn-undefined-variables", 0,
  289.     "Warn when an undefined variable is referenced" },
  290.     { '\0', }
  291.   };
  292.  
  293. /* Secondary long names for options.  */
  294.  
  295. static struct option long_option_aliases[] =
  296.   {
  297.     { "quiet",        no_argument,        0, 's' },
  298.     { "stop",        no_argument,        0, 'S' },
  299.     { "new-file",    required_argument,    0, 'W' },
  300.     { "assume-new",    required_argument,    0, 'W' },
  301.     { "assume-old",    required_argument,    0, 'o' },
  302.     { "max-load",    optional_argument,    0, 'l' },
  303.     { "dry-run",    no_argument,        0, 'n' },
  304.     { "recon",        no_argument,        0, 'n' },
  305.     { "makefile",    required_argument,    0, 'f' },
  306.   };
  307.  
  308. /* The usage message prints the descriptions of options starting in
  309.    this column.  Make sure it leaves enough room for the longest
  310.    description to fit in less than 80 characters.  */
  311.  
  312. #define    DESCRIPTION_COLUMN    30
  313.  
  314. /* List of non-switch arguments.  */
  315.  
  316. struct stringlist *other_args = 0;
  317.  
  318. /* The name we were invoked with.  */
  319.  
  320. char *program;
  321.  
  322. /* Our current directory after processing all -C options.  */
  323.  
  324. char *starting_directory;
  325.  
  326. /* Value of the MAKELEVEL variable at startup (or 0).  */
  327.  
  328. unsigned int makelevel;
  329.  
  330. /* First file defined in the makefile whose name does not
  331.    start with `.'.  This is the default to remake if the
  332.    command line does not specify.  */
  333.  
  334. struct file *default_goal_file;
  335.  
  336. /* Pointer to structure for the file .DEFAULT
  337.    whose commands are used for any file that has none of its own.
  338.    This is zero if the makefiles do not define .DEFAULT.  */
  339.  
  340. struct file *default_file;
  341.  
  342. /* Mask of signals that are being caught with fatal_error_signal.  */
  343.  
  344. #ifdef    POSIX
  345. sigset_t fatal_signal_set;
  346. #else
  347. #ifdef    HAVE_SIGSETMASK
  348. int fatal_signal_mask;
  349. #endif
  350. #endif
  351.  
  352. static struct file *
  353. enter_command_line_file (name)
  354.      char *name;
  355. {
  356.   if (name[0] == '~')
  357.     {
  358.       char *expanded = tilde_expand (name);
  359.       if (expanded != 0)
  360.     name = expanded;    /* Memory leak; I don't care.  */
  361.     }
  362.  
  363.   /* This is also done in parse_file_seq, so this is redundant
  364.      for names read from makefiles.  It is here for names passed
  365.      on the command line.  */
  366.   while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
  367.     {
  368.       name += 2;
  369.       while (*name == '/')
  370.     /* Skip following slashes: ".//foo" is "foo", not "/foo".  */
  371.     ++name;
  372.     }
  373.   
  374.   if (*name == '\0')
  375.     {
  376.       /* It was all slashes!  Move back to the dot and truncate
  377.      it after the first slash, so it becomes just "./".  */
  378.       do
  379.     --name;
  380.       while (name[0] != '.');
  381.       name[2] = '\0';
  382.     }
  383.  
  384.   return enter_file (savestring (name, strlen (name)));
  385. }
  386.  
  387. int
  388. main (argc, argv, envp)
  389.      int argc;
  390.      char **argv;
  391.      char **envp;
  392. {
  393.   extern void init_dir ();
  394.   extern RETSIGTYPE fatal_error_signal (), child_handler ();
  395.   register struct file *f;
  396.   register unsigned int i;
  397.   register char *cmd_defs;
  398.   register unsigned int cmd_defs_len, cmd_defs_idx;
  399.   char **p;
  400.   struct dep *goals = 0;
  401.   register struct dep *lastgoal;
  402.   struct dep *read_makefiles;
  403.   PATH_VAR (current_directory);
  404.   char *directory_before_chdir;
  405.  
  406. #ifdef MSDOS
  407. #ifdef __TURBOC__
  408.   /* Don't less tcc fiddle with interrupt vector 00.  */
  409.   _restorezero ();
  410.   /* Both Gnu CC and MS-C has this built-in.  */
  411.   getlongargs (&argc, &argv);
  412. #endif
  413. #endif
  414.  
  415.   default_goal_file = 0;
  416.   reading_filename = 0;
  417.   reading_lineno_ptr = 0;
  418.   
  419. #ifndef    HAVE_SYS_SIGLIST
  420.   signame_init ();
  421. #endif
  422.  
  423. #ifdef    POSIX
  424.   sigemptyset (&fatal_signal_set);
  425. #define    ADD_SIG(sig)    sigaddset (&fatal_signal_set, sig)
  426. #else
  427. #ifdef    HAVE_SIGSETMASK
  428.   fatal_signal_mask = 0;
  429. #define    ADD_SIG(sig)    fatal_signal_mask |= sigmask (sig)
  430. #else
  431. #define    ADD_SIG(sig)
  432. #endif
  433. #endif
  434.  
  435. #define    FATAL_SIG(sig)                                  \
  436.   if (signal ((sig), fatal_error_signal) == SIG_IGN)                  \
  437.     (void) signal ((sig), SIG_IGN);                          \
  438.   else                                          \
  439.     ADD_SIG (sig);
  440.  
  441. #ifdef SIGHUP
  442.   FATAL_SIG (SIGHUP);
  443. #endif
  444. #ifdef SIGQUIT
  445.   FATAL_SIG (SIGQUIT);
  446. #endif
  447.   FATAL_SIG (SIGINT);
  448.   FATAL_SIG (SIGTERM);
  449.  
  450. #ifdef    SIGDANGER
  451.   FATAL_SIG (SIGDANGER);
  452. #endif
  453. #ifdef SIGXCPU
  454.   FATAL_SIG (SIGXCPU);
  455. #endif
  456. #ifdef SIGXFSZ
  457.   FATAL_SIG (SIGXFSZ);
  458. #endif
  459.  
  460. #undef    FATAL_SIG
  461.  
  462.   /* Make sure stdout is line-buffered.  */
  463.  
  464. #ifdef    HAVE_SETLINEBUF
  465.   setlinebuf (stdout);
  466. #else
  467. #ifndef    SETVBUF_REVERSED
  468.   setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
  469. #else    /* setvbuf not reversed.  */
  470.   /* Some buggy systems lose if we pass 0 instead of allocating ourselves.  */
  471.   setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
  472. #endif    /* setvbuf reversed.  */
  473. #endif    /* setlinebuf missing.  */
  474.  
  475.   /* Initialize the directory hashing code.  */
  476.   init_dir ();
  477.  
  478.   /* Figure out where this program lives.  */
  479.  
  480.   if (argv[0] == 0)
  481.     argv[0] = "";
  482.   if (argv[0][0] == '\0')
  483.     program = "make";
  484.   else 
  485.     {
  486. #ifdef MSDOS
  487.       program = xmalloc (strlen (argv[0]) + 1);
  488.       dosfilename (program, argv[0]);
  489.       argv[0] = program;
  490. #endif
  491.       program = rindex (argv[0], '/');
  492.       if (program == 0)
  493.     program = argv[0];
  494.       else
  495.     ++program;
  496. #ifdef MSDOS
  497.       i = strlen (program);
  498.       if (i > 4 && !strcmp (program + i - 4, ".exe"))
  499.     program[i - 4] = '\0';    
  500. #endif
  501.     }
  502.  
  503.   /* Set up to access user data (files).  */
  504.   user_access ();
  505.  
  506.   /* Figure out where we are.  */
  507.  
  508.   if (getcwd (current_directory, GET_PATH_MAX) == 0)
  509.     {
  510. #ifdef    HAVE_GETCWD
  511.       perror_with_name ("getcwd: ", "");
  512. #else
  513.       error ("getwd: %s", current_directory);
  514. #endif
  515.       current_directory[0] = '\0';
  516.       directory_before_chdir = 0;
  517.     }
  518.   else
  519. #ifdef MSDOS
  520.     /* Recall that ms-dos doesn't have per-process cwd.  */
  521.     initial_directory = strdup (current_directory),
  522.     dosfilename (current_directory, current_directory),
  523. #endif
  524.     directory_before_chdir = savestring (current_directory,
  525.                      strlen (current_directory));
  526.  
  527.   /* Read in variables from the environment.  It is important that this be
  528.      done before `MAKE' and `MAKEOVERRIDES' are figured out so their
  529.      definitions will not be ones from the environment.  */
  530.  
  531.   for (i = 0; envp[i] != 0; ++i)
  532.     {
  533.       register char *ep = envp[i];
  534.       while (*ep != '=')
  535.     ++ep;
  536.       /* The result of pointer arithmetic is cast to unsigned int for
  537.      machines where ptrdiff_t is a different size that doesn't widen
  538.      the same.  */
  539.       define_variable (envp[i], (unsigned int) (ep - envp[i]),
  540.                ep + 1, o_env, 1)
  541.     /* Force exportation of every variable culled from the environment.
  542.        We used to rely on target_environment's v_default code to do this.
  543.        But that does not work for the case where an environment variable
  544.        is redefined in a makefile with `override'; it should then still
  545.        be exported, because it was originally in the environment.  */
  546.     ->export = v_export;
  547.     }
  548. #ifdef MSDOS
  549.   {
  550.     extern char* getenv ();
  551.     char *sh = getenv ("SHELL");
  552.     char *cs = getenv ("COMSPEC");
  553.     
  554.     if (sh == NULL && cs != NULL)
  555.       {
  556.     dosfilename (sh = alloca (strlen (cs) + 1), cs);
  557.     (void) define_variable ("SHELL", 5, sh, o_env, 0);
  558.       }
  559.   }
  560. #endif
  561.  
  562.   /* Decode the switches.  */
  563.  
  564.   decode_env_switches ("MAKEFLAGS", 9);
  565. #if 0
  566.   /* People write things like:
  567.          MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
  568.      and we set the -p, -i and -e switches.  Doesn't seem quite right.  */
  569.   decode_env_switches ("MFLAGS", 6);
  570. #endif
  571.   decode_switches (argc, argv, 0);
  572.  
  573.   /* Print version information.  */
  574.  
  575.   if (print_version_flag || print_data_base_flag || debug_flag)
  576.     print_version ();
  577.  
  578.   /* `make --version' is supposed to just print the version and exit.  */
  579.   if (print_version_flag)
  580.     die (0);
  581.  
  582.   /* Search for command line arguments that define variables,
  583.      and do the definitions.  Also save up the text of these
  584.      arguments in CMD_DEFS so we can put them into the values
  585.      of $(MAKEOVERRIDES) and $(MAKE).  */
  586.  
  587.   cmd_defs_len = 200;
  588.   cmd_defs = (char *) xmalloc (cmd_defs_len);
  589.   cmd_defs_idx = 0;
  590.  
  591.   for (i = 1; other_args->list[i] != 0; ++i)
  592.     {
  593.       if (other_args->list[i][0] == '\0')
  594.     /* Ignore empty arguments, so they can't kill enter_file.  */
  595.     continue;
  596.  
  597.       /* Try a variable definition.  */
  598.       if (try_variable_definition ((char *) 0, 0,
  599.                    other_args->list[i], o_command))
  600.     {
  601.       /* It succeeded.  The variable is already defined.
  602.          Backslash-quotify it and append it to CMD_DEFS, then clobber it
  603.          to 0 in the list so that it won't be taken for a goal target.  */
  604.       register char *p = other_args->list[i];
  605.       unsigned int l = strlen (p);
  606.       if (cmd_defs_idx + (l * 2) + 1 > cmd_defs_len)
  607.         {
  608.           if (l * 2 > cmd_defs_len)
  609.         cmd_defs_len += l * 2;
  610.           else
  611.         cmd_defs_len *= 2;
  612.           cmd_defs = (char *) xrealloc (cmd_defs, cmd_defs_len);
  613.         }
  614.       
  615.       while (*p != '\0')
  616.         {
  617.           if (index ("^;'\"*?[]$<>(){}|&~`\\ \t\r\n\f\v", *p) != 0)
  618.         cmd_defs[cmd_defs_idx++] = '\\';
  619.           cmd_defs[cmd_defs_idx++] = *p++;
  620.         }
  621.       cmd_defs[cmd_defs_idx++] = ' ';
  622.     }
  623.       else
  624.     {
  625.       /* It was not a variable definition, so it is a target to be made.
  626.          Enter it as a file and add it to the dep chain of goals.  */
  627.       f = enter_command_line_file (other_args->list[i]);
  628.       f->cmd_target = 1;
  629.       
  630.       if (goals == 0)
  631.         {
  632.           goals = (struct dep *) xmalloc (sizeof (struct dep));
  633.           lastgoal = goals;
  634.         }
  635.       else
  636.         {
  637.           lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
  638.           lastgoal = lastgoal->next;
  639.         }
  640.       lastgoal->name = 0;
  641.       lastgoal->file = f;
  642.     }
  643.     }
  644.  
  645.   if (cmd_defs_idx > 0)
  646.     {
  647.       cmd_defs[cmd_defs_idx - 1] = '\0';
  648.       (void) define_variable ("MAKEOVERRIDES", 13, cmd_defs, o_default, 0);
  649.     }
  650.   free (cmd_defs);
  651.  
  652.   /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
  653.      (If it is a relative pathname with a slash, prepend our directory name
  654.      so the result will run the same program regardless of the current dir.
  655.      If it is a name with no slash, we can only hope that PATH did not
  656.      find it in the current directory.)  */
  657.  
  658.   if (current_directory[0] != '\0'
  659. #ifdef MSDOS
  660.       && argv[0] != 0 && argv[0][1] != ':'
  661. #endif
  662.       && argv[0] != 0 && argv[0][0] != '/' && index (argv[0], '/') != 0)
  663.     argv[0] = concat (current_directory, "/", argv[0]);
  664.  
  665.   (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
  666.  
  667.   /* Append the command-line variable definitions gathered above
  668.      so sub-makes will get them as command-line definitions.  */
  669.  
  670.   (void) define_variable ("MAKE", 4,
  671.               "$(MAKE_COMMAND) $(MAKEOVERRIDES)", o_default, 1);
  672.  
  673.   /* If there were -C flags, move ourselves about.  */
  674.  
  675.   if (directories != 0)
  676.     for (i = 0; directories->list[i] != 0; ++i)
  677.       {
  678.     char *dir = directories->list[i];
  679.     if (dir[0] == '~')
  680.       {
  681.         char *expanded = tilde_expand (dir);
  682.         if (expanded != 0)
  683.           dir = expanded;
  684.       }
  685.     if (chdir (dir) < 0)
  686.       pfatal_with_name (dir);
  687.     if (dir != directories->list[i])
  688.       free (dir);
  689.       }
  690.  
  691.   /* Figure out the level of recursion.  */
  692.   {
  693.     struct variable *v = lookup_variable ("MAKELEVEL", 9);
  694.     if (v != 0 && *v->value != '\0' && *v->value != '-')
  695.       makelevel = (unsigned int) atoi (v->value);
  696.     else
  697.       makelevel = 0;
  698.   }
  699.  
  700.   /* Except under -s, always do -w in sub-makes and under -C.  */
  701.   if (!silent_flag && (directories != 0 || makelevel > 0))
  702.     print_directory_flag = 1;
  703.  
  704.   /* Let the user disable that with --no-print-directory.  */
  705.   if (inhibit_print_directory_flag)
  706.     print_directory_flag = 0;
  707.  
  708.   /* Construct the list of include directories to search.  */
  709.  
  710.   construct_include_path (include_directories == 0 ? (char **) 0
  711.               : include_directories->list);
  712.  
  713.   /* Figure out where we are now, after chdir'ing.  */
  714.   if (directories == 0)
  715.     /* We didn't move, so we're still in the same place.  */
  716.     starting_directory = current_directory;
  717.   else
  718.     {
  719.       if (getcwd (current_directory, GET_PATH_MAX) == 0)
  720.     {
  721. #ifdef    HAVE_GETCWD
  722.       perror_with_name ("getcwd: ", "");
  723. #else
  724.       error ("getwd: %s", current_directory);
  725. #endif
  726.       starting_directory = 0;
  727.     }
  728.       else
  729. #ifdef MSDOS
  730.     dosfilename (current_directory, current_directory),
  731. #endif
  732.     starting_directory = current_directory;
  733.     }
  734.  
  735.   /* Tell the user where he is.  */
  736.  
  737.   if (print_directory_flag)
  738.     log_working_directory (1);
  739.  
  740.   /* Read any stdin makefiles into temporary files.  */
  741.  
  742.   if (makefiles != 0)
  743.     {
  744.       register unsigned int i;
  745.       for (i = 0; i < makefiles->idx; ++i)
  746.     if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
  747.       {
  748.         /* This makefile is standard input.  Since we may re-exec
  749.            and thus re-read the makefiles, we read standard input
  750.            into a temporary file and read from that.  */
  751. #ifdef MSDOS
  752.         /* It is unlikely that this will ever be used for MSDOS, so
  753.            we don't go through all the pain of finding a suitable
  754.            temporary directory.  */
  755.         static char name[] = "/makeXXXXXX";
  756. #else
  757.         static char name[] = "/tmp/GmXXXXXX";
  758. #endif
  759.         FILE *outfile;
  760.  
  761.         /* Make a unique filename.  */
  762.         (void) mktemp (name);
  763.  
  764.         outfile = fopen (name, "w");
  765.         if (outfile == 0)
  766.           pfatal_with_name ("fopen (temporary file)");
  767.         while (!feof (stdin))
  768.           {
  769.         char buf[2048];
  770.         int n = fread (buf, 1, sizeof(buf), stdin);
  771.         if (n > 0 && fwrite (buf, 1, n, outfile) != n)
  772.           pfatal_with_name ("fwrite (temporary file)");
  773.           }
  774.         /* Try to make sure we won't remake the temporary
  775.            file when we are re-exec'd.  Kludge-o-matic!  */
  776.         fprintf (outfile, "%s:;\n", name);
  777.         (void) fclose (outfile);
  778.  
  779.         /* Replace the name that read_all_makefiles will
  780.            see with the name of the temporary file.  */
  781.         {
  782.           char *temp;
  783.           /* SGI compiler requires alloca's result be assigned simply.  */
  784.           temp = (char *) alloca (sizeof (name));
  785.           bcopy (name, temp, sizeof (name));
  786.           makefiles->list[i] = temp;
  787.         }
  788.  
  789.         /* Make sure the temporary file will not be remade.  */
  790.         f = enter_file (savestring (name, sizeof name - 1));
  791.         f->updated = 1;
  792.         f->update_status = 0;
  793.         f->command_state = cs_finished;
  794.         /* Let it be removed when we're done.  */
  795.         f->intermediate = 1;
  796.         /* But don't mention it.  */
  797.         f->dontcare = 1;
  798.       }
  799.     }
  800.  
  801.   /* Set up to handle children dying.  This must be done before
  802.      reading in the makefiles so that `shell' function calls will work.  */
  803.  
  804. #ifdef SIGCHLD
  805.   (void) signal (SIGCHLD, child_handler);
  806. #endif
  807. #ifdef SIGCLD
  808.   (void) signal (SIGCLD, child_handler);
  809. #endif
  810.  
  811.   /* Define the initial list of suffixes for old-style rules.  */
  812.  
  813.   set_default_suffixes ();
  814.  
  815.   /* Define the file rules for the built-in suffix rules.  These will later
  816.      be converted into pattern rules.  We used to do this in
  817.      install_default_implicit_rules, but since that happens after reading
  818.      makefiles, it results in the built-in pattern rules taking precedence
  819.      over makefile-specified suffix rules, which is wrong.  */
  820.  
  821.   install_default_suffix_rules ();
  822.  
  823.   /* Define some internal and special variables.  */
  824.  
  825.   define_automatic_variables ();
  826.  
  827.   /* Set up the MAKEFLAGS and MFLAGS variables
  828.      so makefiles can look at them.  */
  829.  
  830.   define_makeflags (0, 0);
  831.  
  832.   /* Define the default variables.  */
  833.   define_default_variables ();
  834.  
  835.   /* Read all the makefiles.  */
  836.  
  837.   default_file = enter_file (".DEFAULT");
  838.  
  839.   read_makefiles
  840.     = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
  841.  
  842.   /* Decode switches again, in case the variables were set by the makefile.  */
  843.   decode_env_switches ("MAKEFLAGS", 9);
  844. #if 0
  845.   decode_env_switches ("MFLAGS", 6);
  846. #endif
  847.  
  848.   /* Set up MAKEFLAGS and MFLAGS again, so they will be right.  */
  849.  
  850.   define_makeflags (1, 0);
  851.  
  852.   ignore_errors_flag |= lookup_file (".IGNORE") != 0;
  853.  
  854.   silent_flag |= lookup_file (".SILENT") != 0;
  855.  
  856.   /* Make each `struct dep' point at the
  857.      `struct file' for the file depended on.  */
  858.  
  859.   snap_deps ();
  860.  
  861.   /* Convert old-style suffix rules to pattern rules.  It is important to
  862.      do this before installing the built-in pattern rules below, so that
  863.      makefile-specified suffix rules take precedence over built-in pattern
  864.      rules.  */
  865.  
  866.   convert_to_pattern ();
  867.  
  868.   /* Install the default implicit pattern rules.
  869.      This used to be done before reading the makefiles.
  870.      But in that case, built-in pattern rules were in the chain
  871.      before user-defined ones, so they matched first.  */
  872.  
  873.   install_default_implicit_rules ();
  874.  
  875.   /* Compute implicit rule limits.  */
  876.  
  877.   count_implicit_rule_limits ();
  878.  
  879.   /* Construct the listings of directories in VPATH lists.  */
  880.  
  881.   build_vpath_lists ();
  882.  
  883.   /* Mark files given with -o flags as very old (00:00:01.00 Jan 1, 1970)
  884.      and as having been updated already, and files given with -W flags as
  885.      brand new (time-stamp as far as possible into the future).  */
  886.  
  887.   if (old_files != 0)
  888.     for (p = old_files->list; *p != 0; ++p)
  889.       {
  890.     f = enter_command_line_file (*p);
  891.     f->last_mtime = (time_t) 1;
  892.     f->updated = 1;
  893.     f->update_status = 0;
  894.     f->command_state = cs_finished;
  895.       }
  896.  
  897.   if (new_files != 0)
  898.     {
  899.       for (p = new_files->list; *p != 0; ++p)
  900.     {
  901.       f = enter_command_line_file (*p);
  902.       f->last_mtime = NEW_MTIME;
  903.     }
  904.     }
  905.  
  906.   if (read_makefiles != 0)
  907.     {
  908.       /* Update any makefiles if necessary.  */
  909.  
  910.       time_t *makefile_mtimes = 0;
  911.       unsigned int mm_idx = 0;
  912.  
  913.       if (debug_flag)
  914.     puts ("Updating makefiles....");
  915.  
  916.       /* Remove any makefiles we don't want to try to update.
  917.      Also record the current modtimes so we can compare them later.  */
  918.       {
  919.     register struct dep *d, *last;
  920.     last = 0;
  921.     d = read_makefiles;
  922.     while (d != 0)
  923.       {
  924.         register struct file *f = d->file;
  925.         if (f->double_colon)
  926.           for (f = f->double_colon; f != NULL; f = f->prev)
  927.         {
  928.           if (f->deps == 0 && f->cmds != 0)
  929.             {
  930.               /* This makefile is a :: target with commands, but
  931.              no dependencies.  So, it will always be remade.
  932.              This might well cause an infinite loop, so don't
  933.              try to remake it.  (This will only happen if
  934.              your makefiles are written exceptionally
  935.              stupidly; but if you work for Athena, that's how
  936.              you write your makefiles.)  */
  937.  
  938.               if (debug_flag)
  939.             printf ("Makefile `%s' might loop; not remaking it.\n",
  940.                 f->name);
  941.  
  942.               if (last == 0)
  943.             read_makefiles = d->next;
  944.               else
  945.             last->next = d->next;
  946.  
  947.               /* Free the storage.  */
  948.               free ((char *) d);
  949.  
  950.               d = last == 0 ? 0 : last->next;
  951.  
  952.               break;
  953.             }
  954.         }
  955.         if (f == NULL || !f->double_colon)
  956.           {
  957.         if (makefile_mtimes == 0)
  958.           makefile_mtimes = (time_t *) xmalloc (sizeof (time_t));
  959.         else
  960.           makefile_mtimes = (time_t *)
  961.             xrealloc ((char *) makefile_mtimes,
  962.                   (mm_idx + 1) * sizeof (time_t));
  963.         makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
  964.         last = d;
  965.         d = d->next;
  966.           }
  967.       }
  968.       }    
  969.  
  970.       /* Set up `MAKEFLAGS' specially while remaking makefiles.  */
  971.       define_makeflags (1, 1);
  972.  
  973.       switch (update_goal_chain (read_makefiles, 1))
  974.     {
  975.     default:
  976.       abort ();
  977.       
  978.     case -1:
  979.       /* Did nothing.  */
  980.       break;
  981.       
  982.     case 1:
  983.       /* Failed to update.  Figure out if we care.  */
  984.       {
  985.         /* Nonzero if any makefile was successfully remade.  */
  986.         int any_remade = 0;
  987.         /* Nonzero if any makefile we care about failed
  988.            in updating or could not be found at all.  */
  989.         int any_failed = 0;
  990.         register unsigned int i;
  991.  
  992.         for (i = 0; read_makefiles != 0; ++i)
  993.           {
  994.         struct dep *d = read_makefiles;
  995.         read_makefiles = d->next;
  996.         if (d->file->updated)
  997.           {
  998.             /* This makefile was updated.  */
  999.             if (d->file->update_status == 0)
  1000.               {
  1001.             /* It was successfully updated.  */
  1002.             any_remade |= (file_mtime_no_search (d->file)
  1003.                        != makefile_mtimes[i]);
  1004.               }
  1005.             else if (! (d->changed & RM_DONTCARE))
  1006.               {
  1007.             time_t mtime;
  1008.             /* The update failed and this makefile was not
  1009.                from the MAKEFILES variable, so we care.  */
  1010.             error ("Failed to remake makefile `%s'.",
  1011.                    d->file->name);
  1012.             mtime = file_mtime_no_search (d->file);
  1013.             any_remade |= (mtime != (time_t) -1
  1014.                        && mtime != makefile_mtimes[i]);
  1015.               }
  1016.           }
  1017.         else
  1018.           /* This makefile was not found at all.  */
  1019.           if (! (d->changed & RM_DONTCARE))
  1020.             {
  1021.               /* This is a makefile we care about.  See how much.  */
  1022.               if (d->changed & RM_INCLUDED)
  1023.             /* An included makefile.  We don't need
  1024.                to die, but we do want to complain.  */
  1025.             error ("Included makefile `%s' was not found.",
  1026.                    dep_name (d));
  1027.               else
  1028.             {
  1029.               /* A normal makefile.  We must die later.  */
  1030.               error ("Makefile `%s' was not found", dep_name (d));
  1031.               any_failed = 1;
  1032.             }
  1033.             }
  1034.  
  1035.         free ((char *) d);
  1036.           }
  1037.  
  1038.         if (any_remade)
  1039.           goto re_exec;
  1040.         else if (any_failed)
  1041.           die (2);
  1042.         else
  1043.           break;
  1044.       }
  1045.  
  1046.     case 0:
  1047.     re_exec:
  1048.       /* Updated successfully.  Re-exec ourselves.  */
  1049.  
  1050.       remove_intermediates (0);
  1051.  
  1052.       if (print_data_base_flag)
  1053.         print_data_base ();
  1054.  
  1055.       if (print_directory_flag)
  1056.         log_working_directory (0);
  1057.  
  1058.       if (makefiles != 0)
  1059.         {
  1060.           /* These names might have changed.  */
  1061.           register unsigned int i, j = 0;
  1062.           for (i = 1; i < argc; ++i)
  1063.         if (!strcmp (argv[i], "-f")) /* XXX */
  1064.           {
  1065.             char *p = &argv[i][2];
  1066.             if (*p == '\0')
  1067.               argv[++i] = makefiles->list[j];
  1068.             else
  1069.               argv[i] = concat ("-f", makefiles->list[j], "");
  1070.             ++j;
  1071.           }
  1072.         }
  1073.  
  1074.       if (directories != 0 && directories->idx > 0)
  1075.         {
  1076.           char bad;
  1077.           if (directory_before_chdir != 0)
  1078.         {
  1079.           if (chdir (directory_before_chdir) < 0)
  1080.             {
  1081.               perror_with_name ("chdir", "");
  1082.               bad = 1;
  1083.             }
  1084.           else
  1085.             bad = 0;
  1086.         }
  1087.           else
  1088.         bad = 1;
  1089.           if (bad)
  1090.         fatal ("Couldn't change back to original directory.");
  1091.         }
  1092.  
  1093.       for (p = environ; *p != 0; ++p)
  1094.         if (!strncmp (*p, "MAKELEVEL=", 10))
  1095.           {
  1096.         /* The SGI compiler apparently can't understand
  1097.            the concept of storing the result of a function
  1098.            in something other than a local variable.  */
  1099.         char *sgi_loses;
  1100.         sgi_loses = (char *) alloca (40);
  1101.         *p = sgi_loses;
  1102.         sprintf (*p, "MAKELEVEL=%u", makelevel);
  1103.         break;
  1104.           }
  1105.  
  1106.       if (debug_flag)
  1107.         {
  1108.           char **p;
  1109.           fputs ("Re-executing:", stdout);
  1110.           for (p = argv; *p != 0; ++p)
  1111.         printf (" %s", *p);
  1112.           puts ("");
  1113.         }
  1114.  
  1115.       fflush (stdout);
  1116.       fflush (stderr);
  1117.  
  1118.       exec_command (argv, environ);
  1119.       /* NOTREACHED */
  1120.     }
  1121.     }
  1122.  
  1123.   /* Set up `MAKEFLAGS' again for the normal targets.  */
  1124.   define_makeflags (1, 0);
  1125.  
  1126.   {
  1127.     int status;
  1128.  
  1129.     /* If there were no command-line goals, use the default.  */
  1130.     if (goals == 0)
  1131.       {
  1132.     if (default_goal_file != 0)
  1133.       {
  1134.         goals = (struct dep *) xmalloc (sizeof (struct dep));
  1135.         goals->next = 0;
  1136.         goals->name = 0;
  1137.         goals->file = default_goal_file;
  1138.       }
  1139.       }
  1140.     else
  1141.       lastgoal->next = 0;
  1142.  
  1143.     if (goals != 0)
  1144.       {
  1145.     /* Update the goals.  */
  1146.  
  1147.     if (debug_flag)
  1148.       puts ("Updating goal targets....");
  1149.  
  1150.     switch (update_goal_chain (goals, 0))
  1151.       {
  1152.       case -1:
  1153.         /* Nothing happened.  */
  1154.       case 0:
  1155.         /* Updated successfully.  */
  1156.         status = 0;
  1157.         break;
  1158.       case 2:
  1159.         /* Updating failed.  */
  1160.         status = 2;
  1161.         break;
  1162.       case 1:
  1163.         /* We are under -q and would run some commands.  */
  1164.         status = 1;
  1165.         break;
  1166.       default:
  1167.         abort ();
  1168.       }
  1169.       }
  1170.     else
  1171.       {
  1172.     if (read_makefiles == 0)
  1173.       fatal ("No targets specified and no makefile found");
  1174.     else
  1175.       fatal ("No targets");
  1176.       }
  1177.  
  1178.     /* Exit.  */
  1179.     die (status);
  1180.   }
  1181. #ifdef MSDOS
  1182.   if (initial_directory)
  1183.     chdir (initial_directory);
  1184. #endif
  1185.  
  1186.   return 0;
  1187. }
  1188.  
  1189. /* Parsing of arguments, decoding of switches.  */
  1190.  
  1191. static char options[sizeof (switches) / sizeof (switches[0]) * 3];
  1192. static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
  1193.                   (sizeof (long_option_aliases) /
  1194.                    sizeof (long_option_aliases[0]))];
  1195.  
  1196. /* Fill in the string and vector for getopt.  */
  1197. static void
  1198. init_switches ()
  1199. {
  1200.   register char *p;
  1201.   register int c;
  1202.   register unsigned int i;
  1203.  
  1204.   if (options[0] != '\0')
  1205.     /* Already done.  */
  1206.     return;
  1207.  
  1208.   p = options;
  1209.   for (i = 0; switches[i].c != '\0'; ++i)
  1210.     {
  1211.       long_options[i].name = (switches[i].long_name == 0 ? "" :
  1212.                   switches[i].long_name);
  1213.       long_options[i].flag = 0;
  1214.       long_options[i].val = switches[i].c;
  1215.       if (isalnum (switches[i].c))
  1216.     *p++ = switches[i].c;
  1217.       switch (switches[i].type)
  1218.     {
  1219.     case flag:
  1220.     case flag_off:
  1221.     case ignore:
  1222.       long_options[i].has_arg = no_argument;
  1223.       break;
  1224.  
  1225.     case string:
  1226.     case positive_int:
  1227.     case floating:
  1228.       if (isalnum (switches[i].c))
  1229.         *p++ = ':';
  1230.       if (switches[i].noarg_value != 0)
  1231.         {
  1232.           if (isalnum (switches[i].c))
  1233.         *p++ = ':';
  1234.           long_options[i].has_arg = optional_argument;
  1235.         }
  1236.       else
  1237.         long_options[i].has_arg = required_argument;
  1238.       break;
  1239.     }
  1240.     }
  1241.   *p = '\0';
  1242.   for (c = 0; c < (sizeof (long_option_aliases) /
  1243.            sizeof (long_option_aliases[0]));
  1244.        ++c)
  1245.     long_options[i++] = long_option_aliases[c];
  1246.   long_options[i].name = 0;
  1247. }
  1248.  
  1249. /* Decode switches from ARGC and ARGV.
  1250.    They came from the environment if ENV is nonzero.  */
  1251.  
  1252. static void
  1253. decode_switches (argc, argv, env)
  1254.      int argc;
  1255.      char **argv;
  1256.      int env;
  1257. {
  1258.   int bad = 0;
  1259.   register const struct command_switch *cs;
  1260.   register struct stringlist *sl;
  1261.   register int c;
  1262.  
  1263.   if (!env)
  1264.     {
  1265.       other_args = (struct stringlist *) xmalloc (sizeof (struct stringlist));
  1266.       other_args->max = argc + 1;
  1267.       other_args->list = (char **) xmalloc ((argc + 1) * sizeof (char *));
  1268.       other_args->idx = 1;
  1269.       other_args->list[0] = argv[0];
  1270.     }
  1271.  
  1272.   /* getopt does most of the parsing for us.
  1273.      First, get its vectors set up.  */
  1274.  
  1275.   init_switches ();
  1276.  
  1277.   /* Let getopt produce error messages for the command line,
  1278.      but not for options from the environment.  */
  1279.   opterr = !env;
  1280.   /* Reset getopt's state.  */
  1281.   optind = 0;
  1282.  
  1283.   while ((c = getopt_long (argc, argv,
  1284.                options, long_options, (int *) 0)) != EOF)
  1285.     {
  1286.       if (c == '?')
  1287.     /* Bad option.  We will print a usage message and die later.
  1288.        But continue to parse the other options so the user can
  1289.        see all he did wrong.  */
  1290.     bad = 1;
  1291.       else
  1292.     for (cs = switches; cs->c != '\0'; ++cs)
  1293.       if (cs->c == c)
  1294.         {
  1295.           /* Whether or not we will actually do anything with
  1296.          this switch.  We test this individually inside the
  1297.          switch below rather than just once outside it, so that
  1298.          options which are to be ignored still consume args.  */
  1299.           int doit = !env || cs->env;
  1300.  
  1301.           switch (cs->type)
  1302.         {
  1303.         default:
  1304.           abort ();
  1305.  
  1306.         case ignore:
  1307.           break;
  1308.  
  1309.         case flag:
  1310.         case flag_off:
  1311.           if (doit)
  1312.             *(int *) cs->value_ptr = cs->type == flag;
  1313.           break;
  1314.  
  1315.         case string:
  1316.           if (!doit)
  1317.             break;
  1318.  
  1319.           if (optarg == 0)
  1320.             optarg = cs->noarg_value;
  1321.  
  1322.           sl = *(struct stringlist **) cs->value_ptr;
  1323.           if (sl == 0)
  1324.             {
  1325.               sl = (struct stringlist *)
  1326.             xmalloc (sizeof (struct stringlist));
  1327.               sl->max = 5;
  1328.               sl->idx = 0;
  1329.               sl->list = (char **) xmalloc (5 * sizeof (char *));
  1330.               *(struct stringlist **) cs->value_ptr = sl;
  1331.             }
  1332.           else if (sl->idx == sl->max - 1)
  1333.             {
  1334.               sl->max += 5;
  1335.               sl->list = (char **)
  1336.             xrealloc ((char *) sl->list,
  1337.                   sl->max * sizeof (char *));
  1338.             }
  1339.           sl->list[sl->idx++] = optarg;
  1340.           sl->list[sl->idx] = 0;
  1341.           break;
  1342.  
  1343.         case positive_int:
  1344.           if (optarg == 0 && argc > optind
  1345.               && isdigit (argv[optind][0]))
  1346.             optarg = argv[optind++];
  1347.  
  1348.           if (!doit)
  1349.             break;
  1350.  
  1351.           if (optarg != 0)
  1352.             {
  1353.               int i = atoi (optarg);
  1354.               if (i < 1)
  1355.             {
  1356.               if (doit)
  1357.                 error ("the `-%c' option requires a \
  1358. positive integral argument",
  1359.                    cs->c);
  1360.               bad = 1;
  1361.             }
  1362.               else
  1363.             *(unsigned int *) cs->value_ptr = i;
  1364.             }
  1365.           else
  1366.             *(unsigned int *) cs->value_ptr
  1367.               = *(unsigned int *) cs->noarg_value;
  1368.           break;
  1369.  
  1370.         case floating:
  1371.           if (optarg == 0 && optind < argc
  1372.               && (isdigit (argv[optind][0]) || argv[optind][0] == '.'))
  1373.             optarg = argv[optind++];
  1374.  
  1375.           if (doit)
  1376.             *(double *) cs->value_ptr            
  1377.               = (optarg != 0 ? atof (optarg)
  1378.              : *(double *) cs->noarg_value);
  1379.  
  1380.           break;
  1381.         }
  1382.         
  1383.           /* We've found the switch.  Stop looking.  */
  1384.           break;
  1385.         }
  1386.     }
  1387.  
  1388.   if (!env)
  1389.     {
  1390.       /* Collect the remaining args in the `other_args' string list.  */
  1391.  
  1392.       while (optind < argc)
  1393.     {
  1394.       char *arg = argv[optind++];
  1395.       if (arg[0] != '-' || arg[1] != '\0')
  1396.         other_args->list[other_args->idx++] = arg;
  1397.     }
  1398.       other_args->list[other_args->idx] = 0;
  1399.     }
  1400.  
  1401.   if (!env && (bad || print_usage_flag))
  1402.     {
  1403.       /* Print a nice usage message.  */
  1404.  
  1405.       if (print_version_flag)
  1406.     print_version ();
  1407.  
  1408.       fprintf (stderr, "Usage: %s [options] [target] ...\n", program);
  1409.  
  1410.       fputs ("Options:\n", stderr);
  1411.       for (cs = switches; cs->c != '\0'; ++cs)
  1412.     {
  1413.       char buf[1024], shortarg[50], longarg[50], *p;
  1414.  
  1415.       if (cs->description[0] == '-')
  1416.         continue;
  1417.  
  1418.       switch (long_options[cs - switches].has_arg)
  1419.         {
  1420.         case no_argument:
  1421.           shortarg[0] = longarg[0] = '\0';
  1422.           break;
  1423.         case required_argument:
  1424.           sprintf (longarg, "=%s", cs->argdesc);
  1425.           sprintf (shortarg, " %s", cs->argdesc);
  1426.           break;
  1427.         case optional_argument:
  1428.           sprintf (longarg, "[=%s]", cs->argdesc);
  1429.           sprintf (shortarg, " [%s]", cs->argdesc);
  1430.           break;
  1431.         }
  1432.  
  1433.       p = buf;
  1434.  
  1435.       if (isalnum (cs->c))
  1436.         {
  1437.           sprintf (buf, "  -%c%s", cs->c, shortarg);
  1438.           p += strlen (p);
  1439.         }
  1440.       if (cs->long_name != 0)
  1441.         {
  1442.           unsigned int i;
  1443.           sprintf (p, "%s--%s%s",
  1444.                !isalnum (cs->c) ? "  " : ", ",
  1445.                cs->long_name, longarg);
  1446.           p += strlen (p);
  1447.           for (i = 0; i < (sizeof (long_option_aliases) /
  1448.                    sizeof (long_option_aliases[0]));
  1449.            ++i)
  1450.         if (long_option_aliases[i].val == cs->c)
  1451.           {
  1452.             sprintf (p, ", --%s%s",
  1453.                  long_option_aliases[i].name, longarg);
  1454.             p += strlen (p);
  1455.           }
  1456.         }
  1457.       {
  1458.         const struct command_switch *ncs = cs;
  1459.         while ((++ncs)->c != '\0')
  1460.           if (ncs->description[0] == '-' &&
  1461.           ncs->description[1] == cs->c)
  1462.         {
  1463.           /* This is another switch that does the same
  1464.              one as the one we are processing.  We want
  1465.              to list them all together on one line.  */
  1466.           sprintf (p, ", -%c%s", ncs->c, shortarg);
  1467.           p += strlen (p);
  1468.           if (ncs->long_name != 0)
  1469.             {
  1470.               sprintf (p, ", --%s%s", ncs->long_name, longarg);
  1471.               p += strlen (p);
  1472.             }
  1473.         }
  1474.       }
  1475.  
  1476.       if (p - buf > DESCRIPTION_COLUMN - 2)
  1477.         /* The list of option names is too long to fit on the same
  1478.            line with the description, leaving at least two spaces.
  1479.            Print it on its own line instead.  */
  1480.         {
  1481.           fprintf (stderr, "%s\n", buf);
  1482.           buf[0] = '\0';
  1483.         }
  1484.  
  1485.       fprintf (stderr, "%*s%s.\n",
  1486.            - DESCRIPTION_COLUMN,
  1487.            buf, cs->description);
  1488.     }
  1489.  
  1490.       die (bad ? 2 : 0);
  1491.     }
  1492. }
  1493.  
  1494. /* Decode switches from environment variable ENVAR (which is LEN chars long).
  1495.    We do this by chopping the value into a vector of words, prepending a
  1496.    dash to the first word if it lacks one, and passing the vector to
  1497.    decode_switches.  */
  1498.  
  1499. static void
  1500. decode_env_switches (envar, len)
  1501.      char *envar;
  1502.      unsigned int len;
  1503. {
  1504.   char *varref = (char *) alloca (2 + len + 2);
  1505.   char *value, *args;
  1506.   int argc;
  1507.   char **argv;
  1508.  
  1509.   /* Get the variable's value.  */
  1510.   varref[0] = '$';
  1511.   varref[1] = '(';
  1512.   bcopy (envar, &varref[2], len);
  1513.   varref[2 + len] = ')';
  1514.   varref[2 + len + 1] = '\0';
  1515.   value = variable_expand (varref);
  1516.  
  1517.   /* Skip whitespace, and check for an empty value.  */
  1518.   value = next_token (value);
  1519.   len = strlen (value);
  1520.   if (len == 0)
  1521.     return;
  1522.  
  1523.   /* Make a copy of the value in ARGS, where we will munge it.
  1524.      If it does not begin with a dash, prepend one.
  1525.      We must allocate lasting storage for this (and we never free it) because
  1526.      decode_switches may save pointers into it for string-valued switches.  */
  1527.   args = (char *) xmalloc (1 + len + 2);
  1528.   if (value[0] != '-')
  1529.     args[0] = '-';
  1530.   bcopy (value, value[0] == '-' ? args : &args[1], len + 1);
  1531.   /* Write an extra null terminator so our loop below will
  1532.      never be in danger of looking past the end of the string.  */
  1533.   args[(value[0] == '-' ? 0 : 1) + len + 1] = '\0';
  1534.  
  1535.   /* Allocate a vector that is definitely big enough.  */
  1536.   argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
  1537.  
  1538.   /* getopt will look at the arguments starting at ARGV[1].
  1539.      Prepend a spacer word.  */
  1540.   argv[0] = 0;
  1541.   argc = 1;
  1542.   do
  1543.     {
  1544.       argv[argc++] = args;
  1545.       args = end_of_token (args);
  1546.       *args++ = '\0';
  1547.     } while (*args != '\0');
  1548.   argv[argc] = 0;
  1549.  
  1550.   /* Parse those words.  */
  1551.   decode_switches (argc, argv, 1);
  1552. }
  1553.  
  1554. /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
  1555.    command switches.  Include options with args if ALL is nonzero.
  1556.    Don't include options with the `no_makefile' flag set if MAKEFILE.  */
  1557.  
  1558. static void
  1559. define_makeflags (all, makefile)
  1560.      int all, makefile;
  1561. {
  1562.   register const struct command_switch *cs;
  1563.   char *flagstring;
  1564.   struct variable *v;
  1565.  
  1566.   /* We will construct a linked list of `struct flag's describing
  1567.      all the flags which need to go in MAKEFLAGS.  Then, once we
  1568.      know how many there are and their lengths, we can put them all
  1569.      together in a string.  */
  1570.  
  1571.   struct flag
  1572.     {
  1573.       struct flag *next;
  1574.       const struct command_switch *cs;
  1575.       char *arg;
  1576.       unsigned int arglen;
  1577.     };
  1578.   struct flag *flags = 0;
  1579.   unsigned int flagslen = 0;
  1580. #define    ADD_FLAG(ARG, LEN) \
  1581.   do {                                          \
  1582.     struct flag *new = (struct flag *) alloca (sizeof (struct flag));          \
  1583.     new->cs = cs;                                  \
  1584.     new->arg = (ARG);                                  \
  1585.     new->arglen = (LEN);                              \
  1586.     new->next = flags;                                  \
  1587.     flags = new;                                  \
  1588.     if (new->arg == 0)                                  \
  1589.       ++flagslen;        /* Just a single flag letter.  */          \
  1590.     else                                      \
  1591.       flagslen += 1 + 1 + 1 + 1 + new->arglen; /* " -x foo" */              \
  1592.     if (!isalnum (cs->c))                              \
  1593.       /* This switch has no single-letter version, so we use the long.  */    \
  1594.       flagslen += 2 + strlen (cs->long_name);                      \
  1595.   } while (0)
  1596.  
  1597.   for (cs = switches; cs->c != '\0'; ++cs)
  1598.     if (cs->toenv && (!makefile || !cs->no_makefile))
  1599.       switch (cs->type)
  1600.     {
  1601.     default:
  1602.       abort ();
  1603.  
  1604.     case ignore:
  1605.       break;
  1606.  
  1607.     case flag:
  1608.     case flag_off:
  1609.       if (!*(int *) cs->value_ptr == (cs->type == flag_off)
  1610.           && (cs->default_value == 0
  1611.           || *(int *) cs->value_ptr != *(int *) cs->default_value))
  1612.         ADD_FLAG (0, 0);
  1613.       break;
  1614.  
  1615.     case positive_int:
  1616.       if (all)
  1617.         {
  1618.           if ((cs->default_value != 0
  1619.            && (*(unsigned int *) cs->value_ptr
  1620.                == *(unsigned int *) cs->default_value)))
  1621.         break;
  1622.           else if (cs->noarg_value != 0
  1623.                && (*(unsigned int *) cs->value_ptr ==
  1624.                *(unsigned int *) cs->noarg_value))
  1625.         ADD_FLAG ("", 0); /* Optional value omitted; see below.  */
  1626.           else if (cs->c == 'j')
  1627.         /* Special case for `-j'.  */
  1628.         ADD_FLAG ("1", 1);
  1629.           else
  1630.         {
  1631.           char *buf = (char *) alloca (30);
  1632.           sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
  1633.           ADD_FLAG (buf, strlen (buf));
  1634.         }
  1635.         }
  1636.       break;
  1637.  
  1638.     case floating:
  1639.       if (all)
  1640.         {
  1641.           if (cs->default_value != 0
  1642.           && (*(double *) cs->value_ptr
  1643.               == *(double *) cs->default_value))
  1644.         break;
  1645.           else if (cs->noarg_value != 0
  1646.                && (*(double *) cs->value_ptr
  1647.                == *(double *) cs->noarg_value))
  1648.         ADD_FLAG ("", 0); /* Optional value omitted; see below.  */
  1649.           else
  1650.         {
  1651.           char *buf = (char *) alloca (100);
  1652.           sprintf (buf, "%g", *(double *) cs->value_ptr);
  1653.           ADD_FLAG (buf, strlen (buf));
  1654.         }
  1655.         }
  1656.       break;
  1657.  
  1658.     case string:
  1659.       if (all)
  1660.         {
  1661.           struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
  1662.           if (sl != 0)
  1663.         {
  1664.           /* Add the elements in reverse order, because
  1665.              all the flags get reversed below; and the order
  1666.              matters for some switches (like -I).  */
  1667.           register unsigned int i = sl->idx;
  1668.           while (i-- > 0)
  1669.             ADD_FLAG (sl->list[i], strlen (sl->list[i]));
  1670.         }
  1671.         }
  1672.       break;
  1673.     }
  1674.  
  1675. #undef    ADD_FLAG
  1676.  
  1677.   if (flags == 0)
  1678.     /* No flags.  Use a string of two nulls so [1] works below.  */
  1679.     flagstring = "\0";
  1680.   else
  1681.     {
  1682.       /* Construct the value in FLAGSTRING.
  1683.      We allocate enough space for a preceding dash and trailing null.  */
  1684.       register char *p;
  1685.       flagstring = (char *) alloca (1 + flagslen + 1);
  1686.       p = flagstring;
  1687.       *p++ = '-';
  1688.       do
  1689.     {
  1690.       /* Add the flag letter or name to the string.  */
  1691.       if (!isalnum (flags->cs->c))
  1692.         {
  1693.           *p++ = '-';
  1694.           strcpy (p, flags->cs->long_name);
  1695.           p += strlen (p);
  1696.         }
  1697.       else
  1698.         *p++ = flags->cs->c;
  1699.       if (flags->arg != 0)
  1700.         {
  1701.           /* A flag that takes an optional argument which in this case
  1702.          is omitted is specified by ARG being "" and ARGLEN being 0.
  1703.          We must distinguish because a following flag appended without
  1704.          an intervening " -" is considered the arg for the first.  */
  1705.           if (flags->arglen > 0)
  1706.         {
  1707.           /* Add its argument too.  */
  1708.           *p++ = !isalnum (flags->cs->c) ? '=' : ' ';
  1709.           bcopy (flags->arg, p, flags->arglen);
  1710.           p += flags->arglen;
  1711.         }
  1712.           /* Write a following space and dash, for the next flag.  */
  1713.           *p++ = ' ';
  1714.           *p++ = '-';
  1715.         }
  1716.       else if (!isalnum (flags->cs->c))
  1717.         {
  1718.           /* Long options must each go in their own word,
  1719.          so we write the following space and dash.  */
  1720.           *p++ = ' ';
  1721.           *p++ = '-';
  1722.         }
  1723.       flags = flags->next;
  1724.     } while (flags != 0);
  1725.  
  1726.       if (p[-1] == '-')
  1727.     /* Kill the final space and dash.  */
  1728.     p -= 2;
  1729.  
  1730.       /* Terminate the string.  */
  1731.       *p = '\0';
  1732.     }
  1733.  
  1734.   v = define_variable ("MAKEFLAGS", 9,
  1735.                /* On Sun, the value of MFLAGS starts with a `-' but
  1736.               the value of MAKEFLAGS lacks the `-'.
  1737.               Be compatible with this unless FLAGSTRING starts
  1738.               with a long option `--foo', since removing the
  1739.               first dash would result in the bogus `-foo'.  */
  1740.                flagstring[1] == '-' ? flagstring : &flagstring[1],
  1741.                /* This used to use o_env, but that lost when a
  1742.               makefile defined MAKEFLAGS.  Makefiles set
  1743.               MAKEFLAGS to add switches, but we still want
  1744.               to redefine its value with the full set of
  1745.               switches.  Of course, an override or command
  1746.               definition will still take precedence.  */
  1747.                o_file, 0);
  1748.   if (! all)
  1749.     /* The first time we are called, set MAKEFLAGS to always be exported.
  1750.        We should not do this again on the second call, because that is
  1751.        after reading makefiles which might have done `unexport MAKEFLAGS'. */
  1752.     v->export = v_export;
  1753.   /* Since MFLAGS is not parsed for flags, there is no reason to
  1754.      override any makefile redefinition.  */
  1755.   (void) define_variable ("MFLAGS", 6, flagstring, o_env, 0);
  1756. }
  1757.  
  1758. /* Print version information.  */
  1759.  
  1760. static void
  1761. print_version ()
  1762. {
  1763.   static int printed_version = 0;
  1764.  
  1765.   char *precede = print_data_base_flag ? "# " : "";
  1766.  
  1767.   if (printed_version)
  1768.     /* Do it only once.  */
  1769.     return;
  1770.  
  1771.   printf ("%sGNU Make version %s", precede, version_string);
  1772.   if (remote_description != 0 && *remote_description != '\0')
  1773.     printf ("-%s", remote_description);
  1774.  
  1775.   printf (", by Richard Stallman and Roland McGrath.\n\
  1776. %sCopyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc.\n\
  1777. %sThis is free software; see the source for copying conditions.\n\
  1778. %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
  1779. %sPARTICULAR PURPOSE.\n\n", precede, precede, precede, precede);
  1780.  
  1781.   printed_version = 1;
  1782.  
  1783.   /* Flush stdout so the user doesn't have to wait to see the
  1784.      version information while things are thought about.  */
  1785.   fflush (stdout);
  1786. }
  1787.  
  1788. /* Print a bunch of information about this and that.  */
  1789.  
  1790. static void
  1791. print_data_base ()
  1792. {
  1793.   extern char *ctime ();
  1794.   time_t when;
  1795.  
  1796.   when = time ((time_t *) 0);
  1797.   printf ("\n# Make data base, printed on %s", ctime (&when));
  1798.  
  1799.   print_variable_data_base ();
  1800.   print_dir_data_base ();
  1801.   print_rule_data_base ();
  1802.   print_file_data_base ();
  1803.   print_vpath_data_base ();
  1804.  
  1805.   when = time ((time_t *) 0);
  1806.   printf ("\n# Finished Make data base on %s\n", ctime (&when));
  1807. }
  1808.  
  1809. /* Exit with STATUS, cleaning up as necessary.  */
  1810.  
  1811. void
  1812. die (status)
  1813.      int status;
  1814. {
  1815.   static char dying = 0;
  1816.  
  1817.   if (!dying)
  1818.     {
  1819.       int err;
  1820.  
  1821.       dying = 1;
  1822.  
  1823.       if (print_version_flag)
  1824.     print_version ();
  1825.  
  1826.       /* Wait for children to die.  */
  1827.       for (err = status != 0; job_slots_used > 0; err = 0)
  1828.     reap_children (1, err);
  1829.  
  1830.       /* Remove the intermediate files.  */
  1831.       remove_intermediates (0);
  1832.  
  1833.       if (print_data_base_flag)
  1834.     print_data_base ();
  1835.  
  1836.       if (print_directory_flag)
  1837.     log_working_directory (0);
  1838.     }
  1839. #ifdef MSDOS
  1840.   if (initial_directory)
  1841.     chdir (initial_directory);
  1842. #endif
  1843.  
  1844.   exit (status);
  1845. }
  1846.  
  1847. /* Write a message indicating that we've just entered or
  1848.    left (according to ENTERING) the current directory.  */
  1849.  
  1850. static void
  1851. log_working_directory (entering)
  1852.      int entering;
  1853. {
  1854.   static int entered = 0;
  1855.   char *message = entering ? "Entering" : "Leaving";
  1856.  
  1857.   if (entering)
  1858.     entered = 1;
  1859.   else if (!entered)
  1860.     /* Don't print the leaving message if we
  1861.        haven't printed the entering message.  */
  1862.     return;
  1863.  
  1864.   if (print_data_base_flag)
  1865.     fputs ("# ", stdout);
  1866.  
  1867.   if (makelevel == 0)
  1868.     printf ("%s: %s ", program, message);
  1869.   else
  1870.     printf ("%s[%u]: %s ", program, makelevel, message);
  1871.  
  1872.   if (starting_directory == 0)
  1873.     puts ("an unknown directory");
  1874.   else
  1875.     printf ("directory `%s'\n", starting_directory);
  1876. }
  1877.